home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 6 (Reseller Edition) / Apple Ref. & Pres. Lib.v6.0.toast / pc / 3-Presentations / Apple Demos / Training / HyperCard 2.0 Training / •HC 2.0-2 / background_2659.txt < prev    next >
Text File  |  1990-08-07  |  2KB  |  70 lines

  1. -- background: 2659 from stack: in.0-2
  2. -- bmap block id: 3089
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6. ----- HyperTalk script -----
  7. -- This handler goes back to the last card if the user clicks
  8. -- outside the "window".
  9. on mouseUp
  10.   if "field" is not in the target and "button" is not in the target then goBack
  11. end mouseUp
  12.  
  13. -- This handler stores the name of the last card.
  14. on goBack
  15.   go cd "before You Start" of stack "Intro to HyperCard 2.0"
  16. end goBack
  17.  
  18.  
  19.  
  20. -- part 3 (button)
  21. -- low flags: 00
  22. -- high flags: 0000
  23. -- rect: left=33 top=73 right=303 bottom=453
  24. -- title width / last selected line: 0
  25. -- icon id / first selected line: 0 / 0
  26. -- text alignment: 1
  27. -- font id: 0
  28. -- text size: 12
  29. -- style flags: 0
  30. -- line height: 16
  31. -- part name: wind
  32.  
  33.  
  34. -- part 2 (button)
  35. -- low flags: 00
  36. -- high flags: 0000
  37. -- rect: left=40 top=75 right=90 bottom=61
  38. -- title width / last selected line: 0
  39. -- icon id / first selected line: 0 / 0
  40. -- text alignment: 1
  41. -- font id: 0
  42. -- text size: 12
  43. -- style flags: 0
  44. -- line height: 16
  45. -- part name: closebox
  46. ----- HyperTalk script -----
  47. -- This handler sets the cursor to simulate a real closeBox.
  48. on mouseEnter
  49.   set the cursor to "arrow"
  50. end mouseEnter
  51.  
  52. -- This handler sets the cursor to simulate a real closeBox.
  53. on mouseWithIn
  54.   repeat until the mouseloc is not within the rect of me or the mouse is down
  55.     set the cursor to "arrow"
  56.   end repeat
  57.   if the mouse is down then
  58.     send mouseUp to me
  59.   end if
  60. end mouseWithIn
  61.  
  62. -- This handler simulates clicking in a closeBox.
  63. on mouseUp
  64.   set the icon of me to 7937
  65.   wait 15
  66.   set the icon of me to 0
  67.   goBack
  68. end mouseUp
  69.  
  70.